copy image - definição. O que é copy image. Significado, conceito
Diclib.com
Dicionário ChatGPT
Digite uma palavra ou frase em qualquer idioma 👆
Idioma:

Tradução e análise de palavras por inteligência artificial ChatGPT

Nesta página você pode obter uma análise detalhada de uma palavra ou frase, produzida usando a melhor tecnologia de inteligência artificial até o momento:

  • como a palavra é usada
  • frequência de uso
  • é usado com mais frequência na fala oral ou escrita
  • opções de tradução de palavras
  • exemplos de uso (várias frases com tradução)
  • etimologia

O que (quem) é copy image - definição

CREATION OF A COPY OF AN OBJECT IN MEMORY
Shallow copy; Deep copy; Defensive copy; Object copy; Lazy copy

Copy (command)         
COMMAND OF RT-11, RSX-11, OPENVMS, DOS, OS/2 AND MICROSOFT WINDOWS OPERATING SYSTEMS
Copy Con; Copy con; COPY (command); COPY (DOS command); COPY (DOS); COPY/FTP (command)
In computing, copy is a command in various operating systems. The command copies computer files from one directory to another.
Subeditor         
  • access-date=January 7, 2019}}</ref>
WORK THAT AN EDITOR DOES TO IMPROVE THE FORMATTING, STYLE, AND ACCURACY OF TEXT
Copyediting; Copy-editing; Copy editor; Copyedit; Copy edit; Copy-edit; Copyeditor; Copy editors; Copy desk; Sub-editing; Copy Editing; Deskman; Cped; Copy-editor; Sub-editor; Subeditor; Copy chief; Copy Editor; Business editing; Copy edited; Assistant editor; Subediting; Copyeditors; Copyedits; Supervising editor; Copy desk chief; News editor; Sub (editor); Chief subeditor; Chief sub-editor; Mechanical copy editing; Substantive copy editing; Light copy editing; Medium copy editing; Heavy copy editing; Mechanical editing; C/e; Copyreader
·noun An assistant editor, as of a periodical or journal.
sub-editor         
  • access-date=January 7, 2019}}</ref>
WORK THAT AN EDITOR DOES TO IMPROVE THE FORMATTING, STYLE, AND ACCURACY OF TEXT
Copyediting; Copy-editing; Copy editor; Copyedit; Copy edit; Copy-edit; Copyeditor; Copy editors; Copy desk; Sub-editing; Copy Editing; Deskman; Cped; Copy-editor; Sub-editor; Subeditor; Copy chief; Copy Editor; Business editing; Copy edited; Assistant editor; Subediting; Copyeditors; Copyedits; Supervising editor; Copy desk chief; News editor; Sub (editor); Chief subeditor; Chief sub-editor; Mechanical copy editing; Substantive copy editing; Light copy editing; Medium copy editing; Heavy copy editing; Mechanical editing; C/e; Copyreader
also subeditor (sub-editors)
A sub-editor is a person whose job it is to check and correct articles in newspapers or magazines before they are printed. (BRIT; in AM, use copy editor
)
N-COUNT

Wikipédia

Object copying

In object-oriented programming, object copying is creating a copy of an existing object, a unit of data in object-oriented programming. The resulting object is called an object copy or simply copy of the original object. Copying is basic but has subtleties and can have significant overhead. There are several ways to copy an object, most commonly by a copy constructor or cloning. Copying is done mostly so the copy can be modified or moved, or the current value preserved. If either of these is unneeded, a reference to the original data is sufficient and more efficient, as no copying occurs.

Objects in general store composite data. While in simple cases copying can be done by allocating a new, uninitialized object and copying all fields (attributes) from the original object, in more complex cases this does not result in desired behavior.